home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / pendekar.swf / scripts / DefineButton2_787 / BUTTONCONDACTION on(release).as
Text File  |  2006-05-08  |  413b  |  20 lines

  1. on(release){
  2.    if(_parent.musicName != null)
  3.    {
  4.       _parent.music.stop(_parent.musicName);
  5.    }
  6.    _parent.musicName = null;
  7.    if(_root.currentLevel != 3)
  8.    {
  9.       if(_root.gameType == 0)
  10.       {
  11.          _root.menuName = "menuSelectStage";
  12.       }
  13.       else if(_root.gameType == 1)
  14.       {
  15.          _root.menuName = "menuSelectChallenge";
  16.       }
  17.    }
  18.    _root.gotoAndStop("menu");
  19. }
  20.